home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Applications / Demos_Demo folder / Demos_Info folder / Demos™ Demonstration / Demos Help / Demos Help.rsrc / STR#_2003.txt < prev    next >
Text File  |  1994-03-09  |  2KB  |  37 lines

  1. This returns the value of y, temporarily substituting x1 for the value of variable x.
  2.  
  3. This assigns the value of x1 to a temporary variable l (optionally iterating across i), and evaluates x2, substituting the value of l. This appears as: (Using l:=x1 in i Do x2).
  4.  
  5. This truncates distribution x at value y.
  6.  
  7. This transposes the matrix x along dimensions i and j (indices of equal length).
  8.  
  9. This returns the corresponding index value(s) for which array x equals y, across index i.
  10.  
  11. This returns the linear interpolated values in array y of x across ascending index i.
  12.  
  13. This inverts matrix x along dimensions i and j (indices of equal length).
  14.  
  15. This returns 1 for all elements of x that are positive (non-zero), otherwise 0.
  16.  
  17. This returns 1 for all elements of x that are zero, otherwise 0.
  18.  
  19. This iterates over values of index i, substituted in u1, and evaluates the second expression, substituting the value of u1.
  20.  
  21. This computes the percent change in y caused by a 1% change in a Variable x.
  22.  
  23. This performs dynamic simulation for variables whose values depend on their own values at a previous time. For example, given time:=[0,1,2], a:=-9.8, Dynamic( 0, x[time-1]+(1/2)*a*(time^2) ) -> [0,-4.9,-24.5].
  24.  
  25. This returns the derivative of y with respect to x, using a 1% change in x.
  26.  
  27. This computes the determinant of matrix x along dimensions i and j (indices of equal length).
  28.  
  29. This returns a matrix x decomposed along dimensions i and j (indices of equal length).
  30.  
  31. This returns the natural cubic spline interpolated values in array y of values x across ascending index i.
  32.  
  33. This returns the attribute a of variable v.  This appears as: (a of v).  Example: (Title of v)
  34.  
  35. This returns the corresponding value in index i for which array x is maximum.
  36.  
  37.